python how to get number of strings in a list

135

python how to get number of strings in a list -

list_a = ["Hello", 2, 15, "World", 34]

number_of_elements = len(list_a)

print(number_of_elements)

Comments

Submit
0 Comments